Stored Procedures [dbo].[dt_isundersourcecontrol_u]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@vchLoginNamenvarchar(255)510
@vchPasswordnvarchar(255)510
@iWhoTooint4
Permissions
TypeActionOwning Principal
GrantExecutepublic
SQL Script
create proc dbo.dt_isundersourcecontrol_u
    @vchLoginName nvarchar(255) = '',
    @vchPassword  nvarchar(255) = '',
    @iWhoToo      int = 0 /* 0 => Just check project; 1 => get list of objs */

as
    -- This procedure should no longer be called;  dt_isundersourcecontrol should be called instead.
    -- Calls are forwarded to dt_isundersourcecontrol to maintain backward compatibility.
    set nocount on
    exec dbo.dt_isundersourcecontrol
        @vchLoginName,
        @vchPassword,
        @iWhoToo
GO
GRANT EXECUTE ON  [dbo].[dt_isundersourcecontrol_u] TO [public]
GO
Uses